segment register - определение. Что такое segment register
Diclib.com
Словарь ChatGPT
Введите слово или словосочетание на любом языке 👆
Язык:

Перевод и анализ слов искусственным интеллектом ChatGPT

На этой странице Вы можете получить подробный анализ слова или словосочетания, произведенный с помощью лучшей на сегодняшний день технологии искусственного интеллекта:

  • как употребляется слово
  • частота употребления
  • используется оно чаще в устной или письменной речи
  • варианты перевода слова
  • примеры употребления (несколько фраз с переводом)
  • этимология

Что (кто) такое segment register - определение

THE DIVISION OF COMPUTER'S PRIMARY MEMORY INTO SEGMENTS OR SECTIONS
Segmented memory; Segmented Addressing; Segmented address space; Segment register; Memory segment; Code segments; Text segments; Segmentation (memory); Segmented addressing; Segment (memory); Segment:offset addressing; Segment:offset; Segment:offset notation; Segment:offset addressing scheme; Segment:offset memory addressing
Найдено результатов: 1025
Ground segment         
  • Select ground segment facilities worldwide
  • Control center at NASA's [[Jet Propulsion Laboratory]]
  • Radio dishes at an [[Embratel]] earth station in [[Tanguá]], Brazil
GROUND-BASED ELEMENTS OF A SPACECRAFT SYSTEM
Satellite control segment; Ground Segment; Transfer segment; User segment; Ground control segment; Ground control system
A ground segment consists of all the ground-based elements of a space system used by operators and support personnel, as opposed to the space segment and user segment. The ground segment enables management of a spacecraft, and distribution of payload data and telemetry among interested parties on the ground.
Event segment         
Event Segment
A segment of a system variable in computing shows a homogenous status of system dynamics over a time period. Here, a homogenous status of a variable is a state which can be described by a set of coefficients of a formula.
Register (sociolinguistics)         
FORM OF LANGUAGE USED FOR A PARTICULAR PURPOSE OR IN A PARTICULAR COMMUNICATIVE SITUATION
Levels of Register; Speech register; Diatype; Linguistic register; Language register; Formality scale; Lexicographical register; Formality level; Register (socio-linguistics); Speech levels; Formal register; Informal register; Low-register; High-register; Consultative register; Frozen register; Casual register; Intimate register
In sociolinguistics, a register is a variety of language used for a particular purpose or in a particular communicative situation. For example, when speaking officially or in a public setting, an English speaker may be more likely to follow prescriptive norms for formal usage than in a casual setting, for example, by pronouncing words ending in -ing with a velar nasal instead of an alveolar nasal (e.
Register (phonology)         
FEATURE OF SOME TONAL LANGUAGES
Register language; Phonetic register; Pitch register
In phonology, a register, or pitch register, is a prosodic feature of syllables in certain languages in which tone, vowel phonation, glottalization or similar features depend upon one another.
code segment         
  • heap]] sections.
PORTION OF AN OBJECT FILE CONTAINING EXECUTABLE INSTRUCTIONS
Text segment; .text
<memory> (Intel 8086 CS) The area of memory containing the machine code instructions of a program. The code segment of a program may be shared between multiple processes running that code so long as none of them tries to modify it. Unix, confusingly, calls this the "text segment" and the area for uninitialied data, the bss segment. Initialised data is located in the data segment. (1996-12-21)
Code segment         
  • heap]] sections.
PORTION OF AN OBJECT FILE CONTAINING EXECUTABLE INSTRUCTIONS
Text segment; .text
In computing, a code segment, also known as a text segment or simply as text, is a portion of an object file or the corresponding section of the program's virtual address space that contains executable instructions. The term "segment" comes from the memory segment, which is a historical approach to memory management that has been succeeded by paging.
Status register         
REGISTER CONTAINING FLAGS GIVING ADDITIONAL INFORMATION CONCERNING A RESULT IN A PROCESSOR
Condition Code Register; Flag register; Condition code register; Processor flag
A status register, flag register, or condition code register (CCR) is a collection of status flag bits for a processor. Examples of such registers include FLAGS register in the x86 architecture, flags in the program status word (PSW) register in the IBM System/360 architecture through z/Architecture, and the application program status register (APSR) in the ARM Cortex-A architecture.
text segment         
  • heap]] sections.
PORTION OF AN OBJECT FILE CONTAINING EXECUTABLE INSTRUCTIONS
Text segment; .text
Register (music)         
RANGE OF A MUSICAL NOTE, SET OF PITCHES, MELODY, OR INSTRUMENT
Upper register; Registral difference
A register is the "height" or range of a note, set of pitches or pitch classes, melody, part, instrument, or group of instruments. A higher register indicates higher pitch.
Weekly Register         
BALTIMORE-BASED NATIONAL WEEKLY NEWS MAGAZINE
Niles Weekly Register; Niles' Register; Niles' Weekly Register; Niles' National Register; Niles National Register; The Weekly Register
The Weekly Register (also called the Niles Weekly Register and Niles' Register) was a national magazine published in Baltimore, Maryland by Hezekiah Niles from 1811 to 1848. The most widely circulated magazine of its time, the Register was the nation's first weekly newsmagazine and "exerted a powerful influence on the early national discourse.

Википедия

Memory segmentation

Memory segmentation is an operating system memory management technique of division of a computer's primary memory into segments or sections. In a computer system using segmentation, a reference to a memory location includes a value that identifies a segment and an offset (memory location) within that segment. Segments or sections are also used in object files of compiled programs when they are linked together into a program image and when the image is loaded into memory.

Segments usually correspond to natural divisions of a program such as individual routines or data tables so segmentation is generally more visible to the programmer than paging alone. Segments may be created for program modules, or for classes of memory usage such as code and data segments. Certain segments may be shared between programs.

Segmentation was originally invented as a method by which system software could isolate software processes (tasks) and data they are using. It was intended to increase reliability of the systems running multiple processes simultaneously. In a x86-64 architecture it is considered legacy and most x86-64-based modern system software don't use memory segmentation. Instead they handle programs and their data by utilizing memory-paging which also serves as a way of memory protection. However most x86-64 implementations still support it for backward compatibility reasons.